home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / recent / anes.lha / anes / ANES.Install < prev    next >
Text File  |  1997-12-06  |  1KB  |  69 lines

  1. ; ANES Install-script 0.93
  2.  
  3.  
  4.     (message "This script will install A/NES on your HD\n>-----------------------------<\nA/NES was created by\nMorgan Johansson\n(morgan.johansson@mbox301.swipnet.se)\n&\nFredrik Schultz\n(fredrik.schultz@swipnet.se)")
  5.  
  6.     (complete 0)
  7.  
  8.  
  9. ;MAKES THE "A/NES" DIRECTORY
  10.  
  11.     (set dest_dir
  12.       (tackon (askdir
  13.                 (prompt "Where do you want to install ANES?\n"
  14.                         "A drawer called ANES will be created.")
  15.                 (help @askdir-help)
  16.                 (default "ram:")
  17.                 (disk)
  18.               )
  19.               "ANES"
  20.       )
  21.     )
  22.  
  23.     (set @default-dest dest_dir)
  24.     (makedir dest_dir)
  25.  
  26.  
  27.  
  28. ; COPIES THE A/NES EXECUTABLE & GUIDE TO THE DESTINATION DIRETORY + ICONS
  29.  
  30.     (copyfiles
  31.       (source "ANES")
  32.       (dest (dest_dir))
  33.       (infos)
  34.     )
  35.  
  36.     (copyfiles
  37.       (source "ANES_registered")
  38.       (dest (dest_dir))
  39.       (infos)
  40.     )
  41.  
  42.     (copyfiles
  43.       (source "ANES.guide")
  44.       (dest (dest_dir))
  45.       (infos)
  46.     )
  47.  
  48.     (complete 50)
  49.  
  50. ; COPY THE DRAWER ICON
  51.     (copyfiles
  52.       (source "/ANES.info")
  53.       (dest (tackon dest_dir "/")))
  54.      
  55.  
  56. ; ASKS WHERE TO INSTALL THE FONT
  57.  
  58. (copyfiles
  59.     (prompt "I will have to install NINTENDO fonts\nRequired to get ANES running\nWhere should I put them?")
  60.     (help @copyfiles-help)
  61.     (source "fonts/")
  62.     (dest "fonts:")
  63.     (all)
  64.     (confirm)
  65. )
  66.  
  67.     (complete 100)
  68.     (exit)
  69.